Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.ecm.platform.thumbnail.listener

Resolution Order

885
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<component name="org.nuxeo.ecm.platform.thumbnail.listener">

  <extension target="org.nuxeo.ecm.core.event.EventServiceComponent"
    point="listener">

    <listener name="updateThumbListener" async="true"
      postCommit="true"
      class="org.nuxeo.ecm.platform.thumbnail.listener.UpdateThumbnailListener"
      priority="999">
      <event>scheduleThumbnailUpdate</event>
    </listener>
    <listener name="checkBlobUpdate" async="false" postCommit="false"
      class="org.nuxeo.ecm.platform.thumbnail.listener.CheckBlobUpdateListener"
      priority="999">
      <event>documentCreated</event>
      <event>beforeDocumentModification</event>
    </listener>
  </extension>

</component>